home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / dup.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  2KB  |  86 lines

  1. /* 
  2.  * dup.c --
  3.  *
  4.  *    Procedure to map from Unix dup system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: dup.c,v 1.1 88/06/19 14:31:13 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16.  
  17. #include "compatInt.h"
  18.  
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * dup --
  24.  *
  25.  *    Procedure to map from Unix dup system call to Sprite Fs_GetNewID.
  26.  *
  27.  * Results:
  28.  *    UNIX_ERROR is returned upon error, with the actual error code
  29.  *    stored in errno.  Upon success, the new file descriptor is returned.
  30.  *
  31.  * Side effects:
  32.  *    A new open file descriptor is allocated for the process.
  33.  *
  34.  *----------------------------------------------------------------------
  35.  */
  36.  
  37. int
  38. dup(oldStreamID)
  39.     int oldStreamID;        /* original stream identifier */
  40. {
  41.     ReturnStatus status;    /* result returned by Fs_GetNewID */
  42.     int newStreamID = FS_ANYID;    /* new stream identifier */
  43.  
  44.     status = Fs_GetNewID(oldStreamID, &newStreamID);
  45.     if (status != SUCCESS) {
  46.     errno = Compat_MapCode(status);
  47.     return(UNIX_ERROR);
  48.     } else {
  49.     return(newStreamID);
  50.     }
  51. }
  52.  
  53.  
  54. /*
  55.  *----------------------------------------------------------------------
  56.  *
  57.  * dup2 --
  58.  *
  59.  *    Procedure to map from Unix dup2 system call to Sprite Fs_GetNewID.
  60.  *
  61.  * Results:
  62.  *    UNIX_ERROR is returned upon error, with the actual error code
  63.  *    stored in errno.  Upon success, the new file descriptor is returned.
  64.  *
  65.  * Side effects:
  66.  *    A new open file descriptor is allocated for the process.
  67.  *
  68.  *----------------------------------------------------------------------
  69.  */
  70.  
  71. int
  72. dup2(oldStreamID, newStreamID)
  73.     int oldStreamID;        /* original stream identifier */
  74.     int newStreamID;        /* new stream identifier */
  75. {
  76.     ReturnStatus status;    /* result returned by Fs_GetNewID */
  77.  
  78.     status = Fs_GetNewID(oldStreamID, &newStreamID);
  79.     if (status != SUCCESS) {
  80.     errno = Compat_MapCode(status);
  81.     return(UNIX_ERROR);
  82.     } else {
  83.     return(UNIX_SUCCESS);
  84.     }
  85. }
  86.